/* Fullscreen spin mode */

body.fullscreen-spin-active .spin-container,
body.fullscreen-spin-active .play-mode-container,
body.fullscreen-spin-active .all-in-one-container,
body.fullscreen-spin-active footer,
body.fullscreen-spin-active .cookie-banner,
body.fullscreen-spin-active .pipes-to-player,
body.fullscreen-spin-active .header {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.fullscreen-spin-active .header,
body.fullscreen-spin-active .header::before {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.fullscreen-spin-active {
    overflow: hidden;
}

body.fullscreen-spin-active .fullscreen-spin-overlay {
    display: flex !important;
}

.fullscreen-spin-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fullscreen-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.fullscreen-spin-video {
    max-width: 35vw;
    max-height: 35vh;
    object-fit: contain;
    border-radius: 10px;
}

.fullscreen-spin-counter {
    font-family: 'Press Start 2P', monospace;
    font-size: 4rem;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    margin-top: 15px;
}

.fullscreen-song-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px;
    text-align: center;
    max-width: 80%;
}

@media (max-width: 768px) {
    .fullscreen-title {
        font-size: 1rem;
    }
    .fullscreen-spin-video {
        max-width: 25vw;
        max-height: 25vh;
    }
    .fullscreen-spin-counter {
        font-size: 2.5rem;
    }
    .fullscreen-song-name {
        font-size: 0.7rem;
    }
}